home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 23 / AACD 23.iso / AACD / Programming / Wipeout / source / taskinfo.h < prev    next >
C/C++ Source or Header  |  1998-04-13  |  543b  |  28 lines

  1. /*
  2.  * $Id: taskinfo.h 1.4 1998/04/13 09:16:41 olsen Exp olsen $
  3.  *
  4.  * :ts=4
  5.  *
  6.  * Wipeout -- Traces and munges memory and detects memory trashing
  7.  *
  8.  * Written by Olaf `Olsen' Barthel <olsen@sourcery.han.de>
  9.  * Public Domain
  10.  */
  11.  
  12. #ifndef _TASKINFO_H
  13. #define _TASKINFO_H 1
  14.  
  15. /****************************************************************************/
  16.  
  17. /* task types */
  18. enum
  19. {
  20.     TASKTYPE_Task,
  21.     TASKTYPE_Process,
  22.     TASKTYPE_CLI_Program
  23. };
  24.  
  25. /****************************************************************************/
  26.  
  27. #endif /* _TASKINFO_H */
  28.